home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri Kaikille K-CD 2001 #12 / K-CD_2001-12.iso / MoNoon 2D / setup.002 < prev    next >
Text File  |  2000-03-24  |  1KB  |  55 lines

  1. Copyright(c)2000 MoNooN 
  2. http://my.netian.com/~monoon
  3. monoon@netian.com
  4. -----------------------------------------------------
  5.  
  6. The Grammar
  7.  
  8.   1. Arithmetical operations: +, -, *, /
  9.   2. Raising to power : ^
  10.   3. You can use following math functions : (In Parentheses((), {}, []), input your equation or values.)
  11.  
  12.     <Generic function>
  13.  
  14.     abs() : absolute value
  15.     floor() : The result is an integer smaller than the figure in the parenthesis.
  16.     sqrt() : squar root
  17.  
  18.     <Trigonal and exponential function>
  19.  
  20.     exp() : exponent function
  21.  
  22.     sin() : sine function
  23.     cos() : cosine function
  24.     tan() : tangent function
  25.  
  26.     sec() : 1/cos()
  27.     csc() : 1/sin()
  28.     cot() : 1/tan()
  29.  
  30.     asin() : arcsine function
  31.     acos() : arccosine function
  32.     atan() :  arctangent function
  33.  
  34.     sinc() : sinc function( sinc(x)=sin(x)/x )
  35.     sinh() : hyperbolic sine function
  36.     cosh() : hyperbolic cosine function
  37.     tanh() : hyperbolic tangent function
  38.  
  39.     log() : logarithm function base 10
  40.     ln() : natural logarithm function
  41.  
  42.     <Special function> Bessel Function: 
  43.  
  44.         First Kind Bessel Function :         j0(), j1(), ..... j9()
  45.         Second Kind Bessel Function :     y0(), y2(), ...... y9()
  46.  
  47.   4. You can use following variables :
  48.     p=3.14159... ,  e=exp(1)
  49.  
  50.   5. You can use following parentheses:
  51.     (), {}, [] 
  52.  
  53.   6. You can use blank letter.
  54.  
  55.